#include "config.h"
+#include "gtkaccessible.h"
#include "gtksearchentry.h"
#include "gtkmarshalers.h"
#include "gtkintl.h"
static void
gtk_search_entry_init (GtkSearchEntry *entry)
{
+ AtkObject *atk_obj;
+
g_object_set (entry,
"primary-icon-name", "edit-find-symbolic",
"primary-icon-activatable", FALSE,
"primary-icon-sensitive", FALSE,
NULL);
+
+ atk_obj = gtk_widget_get_accessible (GTK_WIDGET (entry));
+ if (GTK_IS_ACCESSIBLE (atk_obj))
+ atk_object_set_name (atk_obj, _("Search"));
}
/**